home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Resources / Developers / XAMPP 1.5.4 / Windows installer / xampp-win32-1.5.4-installer.exe / xampp / apache / apache_uninstallservice.bat < prev    next >
DOS Batch File  |  2005-09-26  |  347b  |  19 lines

  1. @echo off
  2.  
  3. if "%OS%" == "Windows_NT" goto WinNT
  4.  
  5. :Win9X
  6. echo Don't be stupid! Win9x don't know Services
  7. echo Please use apache_stop.bat instead
  8. goto exit
  9.  
  10. :WinNT
  11. echo Are you sure you wan't this?
  12. echo now stopping Apache2 when it runs
  13. net stop Apache2
  14. echo Time to say good bye to Apache2 :(
  15. bin\apache -k uninstall
  16.  
  17. :exit
  18. pause
  19.